摘要:
穷举法代码: #include<iostream> using namespace std; int main() { int a,b,c,x; cin>>a>>b>>c; int max = (a>b)? ((a>c)? a : c) : ((b>c)? b : c ); for(int i=ma 阅读全文
摘要:
/** * Created by zmis2 on 2016/11/18. */import React,{Component} from 'react';import { Text, View, StyleSheet, TouchableOpacity,} from 'react-native'; 阅读全文