Chinaunix首页 | 论坛 | 博客
  • 博客访问: 103456
  • 博文数量: 102
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 1011
  • 用 户 组: 普通用户
  • 注册时间: 2014-01-15 13:58
个人简介

普普通通一个人

文章分类

全部博文(102)

文章存档

2018年(1)

2015年(13)

2014年(88)

我的朋友

分类: C/C++

2014-01-15 14:53:07


  1. #include<stdio.h>
  2. int main()
  3. {
  4.     int x;
  5.     int y;
  6.     int z;
  7.     int result;
  8.     int intInput;
  9.     printf("Enter a integer: ");
  10.     scanf("%d",&intInput);
  11.     printf("Enter 1/3 integers,x: ");
  12.     scanf("%d",&x);
  13.     printf("Enter 2/3 integers,y: ");
  14.     scanf("%d",&y);
  15.     printf("Enter 3/3 integers,z: ");
  16.     scanf("%d",&z);
  17.     if(intInput != 7)
  18.     {
  19.         printf("this variable is not equal to 7\n");
  20.         printf("this is a C program.\n");
  21.         printf("this is a C \nprogram.\n");
  22.         printf("this\tis\ta\tC\tprogram.\n");
  23.         result = x*y*z;
  24.         printf("the product is:%d", result);
  25.     }
  26.     return 0;
  27. }

阅读(213) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~