已采纳回答 / 慕九州5552665
#include <stdio.h>int main(){ int age = 18; float height = 1.85; char unit = 'm'; printf("小明今年%d岁\n", age); printf("小明身高%f%c \n", height, unit); printf("小明现在在慕课网上学习it技术",unit); return 0;}对照一下。
2018-07-22
已采纳回答 / 做个程序猿啊
#include <stdio.h>int main(){ int age,height; float weight; char isfat; age = 15; height = 162; weight = 82.5; isfat = 'y'; printf("年龄:%d 岁\n", age); printf("身高:...
2018-07-22
已采纳回答 / 宝慕林9123151
能啊,但是最好有个条件。例如 int i=0;while(i<100){if(i==30)break;//代表了当i等于30的时候。就跳出循环了。如果没有if语句,那它会直接跳出去i++;}
2018-07-22
已采纳回答 / 麻瓜42
作为菜鸡,什么是输入错误什么是输出错误我是不懂的,但是,要求的图形中第一行有四个空格(你试试选中就知道了),你这么写第一行只能在j=4、3、2的时候各输出一个空格,一开始就错了。
2018-07-21
已采纳回答 / 慕仔5097861
函数返回值age刷新,你这样想,当N=2的时候,子函数getAge(n-1)返回10,那么再+2就是我现在N=2的值,依次类推,N=3,4,5,依次在前一次加2
2018-07-21
最赞回答 / 慕九州5552665
我之前的代码是:#include <stdio.h>int main(){ int a,b,c,d; double result; a = 1; b = 2; c = 3.00; d = 4; result = a * b * c / d; printf("%f\n", result); return 0;}结果是:运行成功
1.000000
2018-07-21