首页
新闻
小组
威客
人才
下载
博客
代码贴
在线编程
论坛
注册
|
登录
代码贴
→
蔡小菜的代码贴
→
全部
[C语言]第2课 输入和变量指针
#include <stdio.h>
#define PRICE 30;
int main() {
float num,total;
scanf("%f", &num);
total=num*PRICE;
printf("total = %f \n", total);
......................
阅读全部
| 2022年1月25日 18:44
[C语言]第1课::变量和函数
#include <stdio.h>
#define PRICE 30;
int main() {
float num,total;
num=10.5;
total=num*PRICE;
printf("total = %f \n", total);
}
阅读全部
| 2022年1月25日 18:38
1
蔡小菜
全部(2)
C语言(2)