题解 1007: [编程入门]分段函数求值

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

筛选

c++解题思路

摘要:解题思路:注意事项:参考代码:#includeusing namespace std;int main(){    int x,y;    cin >> x;    if(x>=10)        ……

c++

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){    int x,y;    cin>>x;    if (x<1) ……

分段函数求值

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

用switch开关语句解决分段问题

摘要:解题思路:采用switch开关语句,使代码更为简洁注意事项:参考代码:#include<stdio.h>#include<stdlib.h>int main(){ int x,y,i; scanf("……