题解 1010: [编程入门]利润计算

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

C语言的”利润计算“小题

摘要:解题思路:    其实就是一个简单的循环语句,我用了其中一种。注意事项:参考代码:#include<stdio.h>int main(){    int a,b,c,d,e,f,g;    print……

利用笨办法求解

摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){ int a; int b; while (cin >> a) { ……

C语言:switch语句

摘要:解题思路: 直接利用switch语句来实现注意事项:参考代码:#include<stdio.h>int main(){    int a,d;    scanf("%d",&a);    switch……

利 润 计 算

摘要: #include using namespace std; int main() { int x, sum; cin >> x; ……

利用if进行分类简单易懂

摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int n; float p; scanf("%d",&n); if(n<=100000) { p=n*0.……

利润计算——简单思路

摘要:解题思路:if——else-if——else 语句 ;比较直接。注意事项:注意数字的大小参考代码:#include<stdio.h>int main(){    int x,y;    scanf("……